path.lazybuf.w (field)

19 uses

	path (current package)
		path.go#L23: 	w   int
		path.go#L35: 		if b.w < len(b.s) && b.s[b.w] == c {
		path.go#L36: 			b.w++
		path.go#L40: 		copy(b.buf, b.s[:b.w])
		path.go#L42: 	b.buf[b.w] = c
		path.go#L43: 	b.w++
		path.go#L48: 		return b.s[:b.w]
		path.go#L50: 	return string(b.buf[:b.w])
		path.go#L104: 			case out.w > dotdot:
		path.go#L106: 				out.w--
		path.go#L107: 				for out.w > dotdot && out.index(out.w) != '/' {
		path.go#L108: 					out.w--
		path.go#L112: 				if out.w > 0 {
		path.go#L117: 				dotdot = out.w
		path.go#L122: 			if rooted && out.w != 1 || !rooted && out.w != 0 {
		path.go#L133: 	if out.w == 0 {